home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / stdio / ungetc.c < prev    next >
C/C++ Source or Header  |  1988-12-29  |  3KB  |  82 lines

  1. /* 
  2.  * ungetc.c --
  3.  *
  4.  *    Source code for the "ungetc" library procedure.
  5.  *
  6.  * Copyright 1988 Regents of the University of California
  7.  * Permission to use, copy, modify, and distribute this
  8.  * software and its documentation for any purpose and without
  9.  * fee is hereby granted, provided that the above copyright
  10.  * notice appear in all copies.  The University of California
  11.  * makes no representations about the suitability of this
  12.  * software for any purpose.  It is provided "as is" without
  13.  * express or implied warranty.
  14.  */
  15.  
  16. #ifndef lint
  17. static char rcsid[] = "$Header: /sprite/src/lib/c/stdio/RCS/ungetc.c,v 1.3 88/12/29 01:02:47 rab Exp Locker: mendel $ SPRITE (Berkeley)";
  18. #endif not lint
  19.  
  20. #include "stdio.h"
  21.  
  22. /*
  23.  *----------------------------------------------------------------------
  24.  *
  25.  * ungetc --
  26.  *
  27.  *    This procedure adds a single character back to the front of a
  28.  *    stream, so that it will be the next character read from the
  29.  *    stream.  This procedure is only guaranteed to work once in a
  30.  *    row for any stream until getc is called again.  Successive
  31.  *    calls may eventually back up to the beginning of the stream's
  32.  *    buffer, in which case future attempts to put characters back will
  33.  *    be ignored.
  34.  *
  35.  * Results:
  36.  *    EOF is returned if there was insufficient space left in the
  37.  *    buffer to push c back.  Otherwise c is returned.
  38.  *
  39.  * Side effects:
  40.  *    The stream is modified so that the next getc call for the
  41.  *    stream will return c.
  42.  *
  43.  *----------------------------------------------------------------------
  44.  */
  45.  
  46. int
  47. ungetc(c, stream)
  48.     int c;                /* Character to put back. */
  49.     register FILE *stream;        /* Stream in which to put c back. */
  50. {
  51.     if ((stream->writeCount > 0) ||
  52.         !(stream->flags & STDIO_READ) || (c == EOF) ||
  53.         (stream->status != 0)) {
  54.     return EOF;
  55.     }
  56.     if (stream->lastAccess < stream->buffer) {
  57.     if (stream->readCount != 0) {
  58.         return EOF;
  59.     }
  60.     stream->lastAccess = stream->buffer + stream->bufSize - 1;
  61.     }
  62.     if (stream->lastAccess < stream->buffer) {
  63.     stream->lastAccess = stream->buffer + stream->bufSize - 1;
  64.     stream->readCount = 0;
  65.     }
  66.  
  67.     /*
  68.      * Special case:  don't overwrite the character if it's already
  69.      * got the correct value.  This is needed during sscanf, if the
  70.      * string being scanned is read-only:  sscanf calls ungetc, but
  71.      * always puts back the same value that was already there.
  72.      */
  73.  
  74.     if (*(stream->lastAccess) != c) {
  75.     *(stream->lastAccess) = c;
  76.     }
  77.     stream->lastAccess--;
  78.     stream->readCount++;
  79.     stream->flags &= ~STDIO_EOF;
  80.     return c;
  81. }
  82.